* @return True if the audio codec is TrueHD.
*/
public boolean isTrueHD() {
return getCodecA() != null && "truehd".equals(getCodecA());
}
/**
* @return True if the audio codec is TrueHD.
*/
public boolean isTrueHD() {
return FormatConfiguration.TRUEHD.equalsIgnoreCase(getCodecA());
}
/**